home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / tallygrp.sql < prev    next >
Text File  |  2000-05-12  |  598b  |  18 lines

  1. /* RCSVER $Id: tallygrp.sql,v 1.2 2000-02-03 10:07:16-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        tallygrp
  6. * Date:        02/03/00
  7. * memo:        Randy Wood
  8. * Description:    Create the tallygrp table. 
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE tallygrp
  12. (
  13.     tgroup    NUMBER(38),
  14.     descr        VARCHAR2(20),    /* Description */
  15.     config_num    NUMBER(38),
  16.       CONSTRAINT pk_tallygrp PRIMARY KEY (tgroup, config_num)
  17. );
  18.